home *** CD-ROM | disk | FTP | other *** search
- // ____________________________________________________
- // | |
- // | Project: POWER VIEW IDE |
- // | File: W.H |
- // | Compiler: WPP386 (10.6) |
- // | |
- // | Subject: Main module header |
- // | |
- // | Author: Emil Dotchevski |
- // |____________________________________________________|
- //
- // E-mail: zajo@geocities.com
- // URL: http://www.geocities.com/SiliconValley/Bay/3577
-
- #ifndef _W_H_INCLUDED
- #define _W_H_INCLUDED
- #define cmCOM_TIMECHECK 0x1017
- #endif
-
- #ifdef _DECLARE_W_H
- char startup_path[_MAX_PATH]="";
- char program_params[128] = "";
- uint time_check = cmCOM_TIMECHECK;
- #else
- extern char startup_path[_MAX_PATH];
- extern char program_params[128];
- extern uint time_check;
- #endif
-
- char *tmp_fname( char *result, char *fname );
- char *exe_fname( char *result, char *path );
- char *exe_file( char *result, char *path );
- char *obj_file( char *result, char *path );
- char *target_file( char *result, char *path );
- boolean save_status( void );
- void project_close( void );
- void init_main_menu( void );
-